23ce3bc74d1bdc181053f32f07ad7a64b2846f13,src/main/java/org/jdc/template/model/database/main/individual/IndividualBaseRecord.java,IndividualBaseRecord,bindInsertStatement,#StatementWrapper#,135
Before Change
statement.bindString(11, email);
statement.bindLong(12, available ? 1 : 0);
statement.bindDouble(13, amount1);
statement.bindDouble(14, amount2);
statement.bindLong(15, enabled ? 1 : 0);
if (spouseIndividualId != null) {
statement.bindLong(16, spouseIndividualId);
After Change
statement.bindString(11, phone);
statement.bindString(12, email);
statement.bindLong(13, available ? 1 : 0);
statement.bindDouble(14, amount1);
statement.bindDouble(15, amount2);
statement.bindLong(16, enabled ? 1 : 0);
if (spouseIndividualId != null) {